make a list c#

67

Create list C# -

var list = new List<string> {
  "test1",
  "test2",
  "test3"
};

Comments

Submit
0 Comments